home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 2.3 KB | 104 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _CLIPBD_
- #define _CLIPBD_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODClipboard;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
- interface ODStorageUnit;
- interface ODDraft;
- interface ODPlatformTypeList;
- #ifdef _PLATFORM_MACINTOSH_
- interface ODFacet;
- #endif //# _PLATFORM_MACINTOSH_
-
- //=====================================================================================
- // ODClipboard
- //=====================================================================================
-
-
- interface ODClipboard : ODObject
- {
- ODUpdateID GetUpdateID();
-
- void Clear();
-
- ODStorageUnit GetContentStorageUnit();
-
- ODUpdateID ActionDone(in ODCloneKind cloneKind);
-
- void ActionUndone(in ODUpdateID update, in ODCloneKind originalCloneKind);
-
- void ActionRedone(in ODUpdateID update, in ODCloneKind originalCloneKind);
-
- void SetPlatformClipboard(in ODPlatformTypeList typeList);
-
- void ExportClipboard();
-
- void DraftSaved(in ODDraft draft);
-
- void DraftClosing(in ODDraft draft);
-
- #ifdef _PLATFORM_MACINTOSH_
-
- ODBoolean ShowPasteAsDialog(
- in ODBoolean canPasteLink,
- in ODPasteAsMergeSetting mergeSetting,
- in ODFacet facet,
- in ODTypeToken viewType,
- out ODPasteAsResult theResult);
-
- #endif //# _PLATFORM_MACINTOSH_
-
-
- #ifdef __SOMIDL__
- #ifdef _PLATFORM_MACINTOSH_
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODClipboard;
-
- override:
- somUninit,
- Purge;
-
- releaseorder:
- GetUpdateID,
- Clear,
- GetContentStorageUnit,
- ActionDone,
- ActionUndone,
- ActionRedone,
- SetPlatformClipboard,
- ExportClipboard,
- DraftSaved,
- DraftClosing,
- ShowPasteAsDialog,
- reserved1,
- reserved2,
- reserved3,
- reserved4,
- reserved5,
- reserved6,
- reserved7,
- reserved8;
-
-
- };
- #endif //# _PLATFORM_MACINTOSH_
- #endif //# __SOMIDL__
- };
-
- #endif // _CLIPBD_
-